JavaScript

A5.shell.exitComponent Method

Syntax

A5.shell.exitComponent();

Description

Exits an AlphaLaunch app, returning the user to the AlphaLaunch home screen.

Discussion

The exitComponent() method is used to exit an App installed in AlphaLaunch. When called, the user is returned to the home page in AlphaLaunch.

Example

if (A5.shell) {
    A5.shell.exitComponent();
}